API Documentation
RenderDescriptor.h
1 // RenderDescriptor.h
3 //
5 
6 namespace nkGraphics
7 {
11  enum class RENDER_PROPS
12  {
13  V_SYNC = 0
14  } ;
15 }
16 
17 namespace nkGraphics
18 {
24  class DLL_GRAPHICS_EXPORT RenderDescriptor
25  {
26  public :
27 
36 
37  // Getter
42  int getValue (RENDER_PROPS prop) ;
43 
44  // Setter
49  void setValue (RENDER_PROPS prop, int value) ;
50 
51  // Print
55  const char* getAsString () ;
56  } ;
57 }
nkGraphics::RENDER_PROPS
RENDER_PROPS
Available rendering properties.
Definition: RenderDescriptor.h:12
nkGraphics::RenderDescriptor::~RenderDescriptor
~RenderDescriptor()
nkGraphics::RenderDescriptor::getValue
int getValue(RENDER_PROPS prop)
nkGraphics::RENDER_PROPS::V_SYNC
@ V_SYNC
V Sync.
nkGraphics::RenderDescriptor::RenderDescriptor
RenderDescriptor()
nkGraphics::RenderDescriptor::getAsString
const char * getAsString()
nkGraphics::RenderDescriptor
Holds information about the configuration of rendering.
Definition: RenderDescriptor.h:25
nkGraphics
Encompasses all API of component NilkinsGraphics.
Definition: BoundingBox.h:7
nkGraphics::RenderDescriptor::setValue
void setValue(RENDER_PROPS prop, int value)